home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gnu / adainc / a-finali.ads < prev    next >
Text File  |  1996-01-30  |  3KB  |  50 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                     A D A . F I N A L I Z A T I O N                      --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.9 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. with System.Finalization_Implementation;
  26.  
  27. package Ada.Finalization is
  28. pragma Preelaborate (Finalization);
  29.  
  30.    type Controlled is abstract tagged private;
  31.  
  32.    procedure Initialize (Object : in out Controlled);
  33.    procedure Adjust     (Object : in out Controlled);
  34.    procedure Finalize   (Object : in out Controlled);
  35.  
  36.    type Limited_Controlled is abstract tagged limited private;
  37.  
  38.    procedure Initialize (Object : in out Limited_Controlled);
  39.    procedure Finalize   (Object : in out Limited_Controlled);
  40.  
  41. private
  42.  
  43.    type Controlled is abstract new
  44.      System.Finalization_Implementation.Root with null record;
  45.  
  46.    type Limited_Controlled is abstract new
  47.      System.Finalization_Implementation.Root with null record;
  48.  
  49. end Ada.Finalization;
  50.